home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / openftpd_detection.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  65 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(14179);
  8.  script_bugtraq_id(10830);
  9.  script_version("$Revision: 1.1 $");
  10.  
  11.  name["english"] = "OpenFTPD Detection";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is running OpenFTPD - a FTP server designed to
  17. help file sharing (aka 'warez').
  18.  
  19. Some version of this server are vulnerable to a remote format string
  20. attack which may allow an attacker to execute arbitrary code on the remote
  21. host.
  22.  
  23. *** Nessus did not actually check for this flaw, so this might be a false
  24. *** positive
  25.  
  26. See also : http://www.openftpd.org/
  27. Solution : Disable the remote service
  28. Risk factor : High";
  29.  
  30.  
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "Determines the presence of OpenFTPD";
  35.  
  36.  script_summary(english:summary["english"]);
  37.  
  38.  script_category(ACT_GATHER_INFO);
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  41.  family["english"] = "General";
  42.  script_family(english:family["english"]);
  43.  
  44.  script_dependencies("find_service2.nasl");
  45.  script_require_ports(21, "Services/ftp");
  46.  exit(0);
  47. }
  48.  
  49.  
  50.  
  51. include("ftp_func.inc");
  52. port = get_kb_item("Services/ftp");
  53. if ( ! port ) port = 21;
  54. if ( ! get_port_state(port) ) exit(0);
  55. banner = get_ftp_banner(port:port);
  56. if ( ! banner ) exit(0);
  57. #
  58. # We only check for the banner :
  59. # - Most (all) OpenFTPD server do not accept anonymous connections
  60. # - The use of OpenFTPD is not encouraged in a corporation environment
  61. #
  62. if ( egrep(pattern:"^220 OpenFTPD server", string:banner ) )
  63.     security_hole(port);
  64.